home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / et / et-2_2.lha / et2.2 / src / InitCol.C < prev    next >
C/C++ Source or Header  |  1990-12-04  |  468b  |  30 lines

  1. #include "System.h"
  2. #include "ProgEnv.h"
  3. #include "Error.h"
  4.  
  5. char *gProgname= "*** progname not set ***";
  6. bool gWinInit;
  7.  
  8. extern System *NewSunSystem();
  9.  
  10. void InitProgenv()
  11. {
  12. }
  13.  
  14. void ETInit()
  15. {
  16. #   ifdef OS_SUNOS
  17.     gSystem= NewSunSystem();
  18.     if (gSystem->Init()) {
  19.     Warning("ETInit", "can't init operating system");
  20.     _exit(1);
  21.     }
  22. #   endif OS_SUNOS
  23.     
  24.     if (gSystem == 0) {
  25.     Warning("ETInit", "no operating system found");
  26.     _exit(0);    // give up
  27.     }
  28. }
  29.  
  30.